home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1833 / 1833.xpi / chrome / yoono.jar / content / yoono / dialogs / restoreBkm.xul < prev    next >
Extensible Markup Language  |  2009-12-16  |  2KB  |  72 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE window SYSTEM "chrome://yoono/locale/restoreBkm.dtd">
  3.  
  4.  
  5. <?xml-stylesheet href="chrome://yoono/skin/bookmarks/bookmarksdlg.css" type="text/css"?>
  6.  
  7. <dialog 
  8.    id="yoono-dialog-bookmarks"
  9.    title="yoono"
  10.    orient="vertical"
  11.    buttons="accept,cancel"
  12.    ondialogaccept="return onAcceptDialog()"
  13.    ondialogcancel="return onCancelDialog()"
  14.    onload="onInitDialog()"
  15.    persist="screenX screenY"
  16.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  17.    xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  18.    xmlns:html="http://www.w3.org/1999/xhtml">
  19.    
  20.    <script type="application/javascript" src="restoreBkm.js"/>
  21.  
  22.    <box class="yoono-dlgheader-box" align="end">
  23.      <hbox class="header-title" align="center">
  24.        <image class="bookmarks-header-pict"/>
  25.        <label class="header" value="&bmarks.restore.header;"/>
  26.      </hbox>
  27.    </box>
  28.  
  29.    <vbox class="yoono-dlgcontent-box" flex="1">
  30.    
  31.      <description class="presentation">
  32.         &bmarks.presentation; <hint>&bmarks.presentation.hint;</hint>
  33.      </description>
  34.    
  35.      <hbox flex="1" id="yoono-inner-box">
  36.        
  37.        <listbox id="backups-list" onselect="onSelectBackup(this.selectedItem)" />
  38.        
  39.        <html:iframe id="backup-preview" xul:flex="1" onload="alert('onload');" />
  40.        
  41.      </hbox>     
  42.  
  43.      <hbox id="select-history-box" align="center">
  44.  
  45.        <label value="&bmarks.numarchives.label;"/> 
  46.  
  47.        <menulist id="maxhistorymenu" oncommand="onChangeMaxHistory(this.selectedItem.value)">
  48.         <menupopup>
  49.           <menuitem label="5"   value="5"/>
  50.           <menuitem label="10"  value="10"/>
  51.           <menuitem label="15"  value="15"/>
  52.           <menuitem label="20"  value="20"/>
  53.           <menuitem label="25"  value="25"/>
  54.           <menuitem label="30"  value="30"/>
  55.         </menupopup>
  56.        </menulist>
  57.      </hbox>
  58.  
  59.    </vbox>
  60.  
  61.    <hbox class="yoono-dlgbutton-box" align="end">
  62.      <button dlgtype="cancel" label="&bmarks.cancel.label;"/>
  63.      <spacer flex="1"/>
  64.      <button dlgtype="accept" class="bookmarks-iconic" id="acceptbtn"
  65.              label="&bmarks.restorebtn.label;"
  66.              disabled="true"/>
  67.    </hbox>
  68.  
  69.    <stringbundle id="bundle" src="chrome://yoono/locale/bookmarks.properties"/>
  70.  
  71. </dialog>
  72.